home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / messages.js < prev    next >
Encoding:
JavaScript  |  2005-04-21  |  4.4 KB  |  137 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is ChatZilla.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. function initMessages()
  41. {
  42.     var path = "chrome://chatzilla/locale/chatzilla.properties";
  43.     
  44.     client.messageManager = new MessageManager(client.entities);
  45.     client.messageManager.loadBrands();
  46.     client.defaultBundle = client.messageManager.addBundle(path);
  47.  
  48.     client.viewName = client.unicodeName = MSG_CLIENT_NAME;
  49.     client.responseCodeMap =
  50.         {
  51.             "HELLO": MSG_RSP_HELLO,
  52.             "HELP" : MSG_RSP_HELP,
  53.             "USAGE": MSG_RSP_USAGE,
  54.             "ERROR": MSG_RSP_ERROR,
  55.             "WARNING": MSG_RSP_WARN,
  56.             "INFO": MSG_RSP_INFO,
  57.             "EVAL-IN": MSG_RSP_EVIN,
  58.             "EVAL-OUT": MSG_RSP_EVOUT,
  59.             "DISCONNECT": MSG_RSP_DISCONNECT,
  60.             "JOIN": "-->|",
  61.             "PART": "<--|",
  62.             "QUIT": "|<--",
  63.             "NICK": "=-=",
  64.             "TOPIC": "=-=",
  65.             "KICK": "=-=",
  66.             "MODE": "=-=",
  67.             "END_STATUS": "---",
  68.             "DCC-CHAT": "[DCC]",
  69.             "DCC-FILE": "[DCC]",
  70.             "315": "---", /* end of WHO */
  71.             "318": "---", /* end of WHOIS */
  72.             "366": "---", /* end of NAMES */
  73.             "376": "---"  /* end of MOTD */
  74.         };
  75. }
  76.  
  77. function checkCharset(charset)
  78. {
  79.     return client.messageManager.checkCharset(charset);
  80. }
  81.  
  82. function toUnicode (msg, charsetOrView)
  83. {
  84.     if (!msg)
  85.         return msg;
  86.  
  87.     var charset;
  88.     if (typeof charsetOrView == "object")
  89.         charset = charsetOrView.prefs["charset"];
  90.     else if (typeof charsetOrView == "string")
  91.         charset = charsetOrView;
  92.     else
  93.         charset = client.currentObject.prefs["charset"];
  94.  
  95.     return client.messageManager.toUnicode(msg, charset);
  96. }
  97.  
  98. function fromUnicode (msg, charsetOrView)
  99. {
  100.     if (!msg)
  101.         return msg;
  102.  
  103.     var charset;
  104.     if (typeof charsetOrView == "object")
  105.         charset = charsetOrView.prefs["charset"];
  106.     else if (typeof charsetOrView == "string")
  107.         charset = charsetOrView;
  108.     else
  109.         charset = client.currentObject.prefs["charset"];
  110.  
  111.     return client.messageManager.fromUnicode(msg, charset);
  112. }
  113.  
  114. function getMsg(msgName, params, deflt)
  115. {
  116.     return client.messageManager.getMsg(msgName, params, deflt);
  117. }
  118.  
  119. function getMsgFrom(bundle, msgName, params, deflt)
  120. {
  121.     return client.messageManager.getMsgFrom(bundle, msgName, params, deflt);
  122. }
  123.  
  124. /* message types, don't localize */
  125. const MT_ATTENTION = "ATTENTION";
  126. const MT_ERROR     = "ERROR";
  127. const MT_HELLO     = "HELLO";
  128. const MT_HELP      = "HELP";
  129. const MT_MODE      = "MODE";
  130. const MT_WARN      = "WARNING";
  131. const MT_INFO      = "INFO";
  132. const MT_USAGE     = "USAGE";
  133. const MT_STATUS    = "STATUS";
  134. const MT_EVALIN    = "EVAL-IN";
  135. const MT_EVALOUT   = "EVAL-OUT";
  136.  
  137.